html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
textarea,
input {
    margin: 0;
    padding: 0;
}

address,
cite,
dfn,
em,
var,
i {
    font-style: normal;
}


@font-face {
    font-family: 'pf-r';
    src: url('../fonts/pfsc-r.ttf');
}


@font-face {
    font-family: 'shh';
    src: url('../fonts/SourceHanSerifSC-Heavy.otf');
}
@font-face {
    font-family: 'pfsc';
    src: url('../fonts/PingFang SC Regular.otf');
}

body {
    font-size: 14px;
    line-height: 1.4;
    color: #333;
    font-family: 'pfsc';
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
th {
    font-size: 100%;
    font-weight: normal;
}

button,
input,
select,
textarea {
    font-size: 100%;
    border: 0;
    background: none;
}

fieldset,
img {
    border: 0;
}

a {
    color: #333;
}

a,
img {
    -webkit-touch-callout: none;
}

img {
    display: block;
}

li img {
    transition: all 0.3s;
}

a,
a:active,
a:focus,
a:hover,
a:visited {
    text-decoration: none;
    font-family: 'pfsc';
}

input[type=password],
input[type=text],
textarea {
    resize: none;
    outline: 0;
    -webkit-appearance: none;
    white-space: pre-wrap;
    word-wrap: break-word;
    background: none;
    outline: none
}

.li,
.dd {
    cursor: pointer;
}

ul,
ol {
    list-style: none;
}

:focus {
    outline: none;
}

ul::after {
    content: '';
    display: block;
    clear: both;
}

.left {
    float: left;
}

.right {
    float: right;
}

.clearfix {
    clear: both;
}

.container::after {
    content: '';
    display: block;
    clear: both;
}

.l_img {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    position: relative;
}

.l_img img {
    max-width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s; 
}

.hover_img .h{ 
    display:block; 
    margin:0 auto; 
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.hover_img:hover .h{
    -webkit-transform: scale(1.2);
    -moz-transform:scale(1.2);
    transform:scale(1.2);
}
/* 加载 */

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(300px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}



/*头部*/

.header {
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    box-sizing: border-box;
    transition: all .25s;
    padding-top: 45px;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}
.header:hover,.header-min{
    background: #fff;
    padding: 25px 0;
    box-shadow: 0 14px 56px -15px rgba(10, 25, 48, 0.2);
    -webkit-box-shadow: 0 14px 56px -15px rgba(10, 25, 48, 0.2); 
    -moz-box-shadow: 0 14px 56px -15px rgba(10, 25, 48, 0.2); 
}
.header:hover .nav a.n{
    color: #000;
}
.header.header-min .nav a.n{
    color: #000;
}
.header .logo {
    width: 227px;
    height: 42px;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .logo img {
    width: 100%;
}

.header .nav {
    float: right;
    text-align: right;
}

.header .nav li {
    display: inline-block;
    width: auto;
    line-height: 42px;
    position: relative;
    text-align: left;
    margin-left: 62px;
}

.header .nav li .nav-box {
    position: absolute;
    left: calc(50% - 105px);
    top: 80px;
    width: 210px;
    background: #fff;
    border-bottom: 5px solid #ed0032;
    box-sizing: border-box;
    display: none;
}

.header .nav li .nav-box a {
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    transition: all .4s;
    padding-left: 20px;
    box-sizing: border-box;
    font-size: 16px;
    font-weight: bold;
}

.header .nav li .nav-box a:hover {
    background: #333;
    color: #fff;
}

.header .nav li .n {
    font-size: 16px;
    color: #fff;
    position: relative;
}
.header .nav li.l{
    margin-left: 70px;
}

.header .nav li.l:after{
    content: '';
    display: block;
    width: 1px;
    height: 18px;
    background: #fff;
    position: absolute;
    top: calc(50% - 9px);
    left: -35px;
}

#fp-nav.right {
    right: 0.3rem;
}
#fp-nav ul li, .fp-slidesNav ul li {
    display: block;
    width: 10px;
    height: 10px;
    margin: 17px 0;
    position: relative;
}
#fp-nav ul li a::after, .fp-slidesNav ul li a::after{
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    border: 1px solid transparent;
    border-radius: 24px;
    position: absolute;
    left: calc(50% - 12px);
    top: calc(50% - 12px);
    box-sizing: border-box;
}
#fp-nav ul li a span, .fp-slidesNav ul li a span{
    width: 10px;
    height: 10px;
    left: 0% !important;
    top: 0% !important;
    margin: 0 !important;
    background: #fff;
}
#fp-nav ul li a.active span, #fp-nav ul li:hover a.active span, .fp-slidesNav ul li a.active span, .fp-slidesNav ul li:hover a.active span {
    height: 10px;
    width: 10px;
    background: #0076c0;
}
#fp-nav ul li a.active:after,#fp-nav ul li:hover a.active:after{
    border: 1px solid #0076c0;
}
#fp-nav ul li a span, .fp-slidesNav ul li a span{
    left: 0% !important;
    top: 0% !important;
    box-shadow: 0px 2px 6px -2px rgba(10, 25, 48, 0.4);
    -webkit-box-shadow: 0px 2px 6px -2px rgba(10, 25, 48, 0.4); 
    -moz-box-shadow: 0px 2px 6px -2px rgba(10, 25, 48, 0.4); 
}

.s-m {
    display: block;
    width: 165px;
    height: 48px;
    border-radius: 48px;
    background-image: linear-gradient(to right, #0866b6, #01a2f3);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #fff;

}
.s-m img{
    margin-left: 30px;
}


.section {
    background-size: cover;
    overflow: hidden;
}

.section-1 .swiper1 {
    width: 100%;
    height: 100%;
}

.section-1 .swiper-slide {
    background-size: cover !important;
}

.section-1 .swiper-slide .text {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.section-1 .swiper-slide .text .d1 {
    font-size: 55px;
    margin-bottom: 30px;
    font-family:'shh';
}

.section-1 .swiper-slide .text .d2 {
    font-size: 36px;
    margin-bottom: 60px;
    font-family: 'pfsc';
}


.section-1 .pagination1 {
    height: 20px;
    line-height: 20px;
    bottom: 60px;
    color: #fff;
    font-size: 20px;
    font-family: 'pfsc';
}

.section-1 .pagination1 .swiper-pagination-bullet {
    display: block;
    float: right;
    width: 21px;
    padding: 4px 0;
    background: none;
    border-radius: 0;
    opacity: 1;
    margin-bottom: 30px;
    margin-left: 10px;
    transition: all .25s;
}

.section-1 .pagination1 .swiper-pagination-bullet::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 1);
    float: right;
    transition: all .25s;
}

.section-1 .pagination1 .swiper-pagination-bullet-active {
    width: 50px;
}
.section-1 .swiper-button-prev1,.section-1 .swiper-button-next1{
    width: 50px;
    height: 50px;
    background: url(../images/arr-r2.png) center no-repeat;
    background-size: cover;
    top: auto;
    margin-top: 0;
    bottom: 60px;
    left: auto;
    right: 108px;
}
.section-1 .swiper-button-prev1{
    background: url(../images/arr-l.png) center no-repeat;
    background-size: cover;
    right: 170px;
}
.section-1  .swiper-button-next:after, .section-1  .swiper-button-prev:after {
    display: none;
}


@keyframes c1 {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* .ant-d .c2 {
    width: 100%;
    height: 100%;
    background: url(../images/c2.png) center no-repeat;
    background-size: 76%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 12;
    -webkit-animation: 10s c2 linear infinite normal;
    animation: 10s c2 linear infinite normal;
} */

@keyframes c2 {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(-180deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

.section-2{
    background: url(../images/s2-bg.jpg) center no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section-2 .t1 {
    text-align: center;
    margin-bottom: 60px;
}
.section-2 .t1 p{
    font-size: 200px;
    color: #999999;
    text-transform: uppercase;
    opacity: .1;
}
.section-2 .t1 span{
    display: block;
    color: #000;
    font-size: 40px;
    margin-top: -60px;
    font-family: 'shh';
}
.section-2 .t2{
    text-align: center;
    width: 975px;
    margin: 0 auto 75px;
    font-size: 16px;
    line-height: 35px;
    font-family: 'pfsc';
}
.section-2 .lt-d4{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    width: 1000px;
    max-width: 100%;
    margin: 0 auto 110px;
}
.section-2 .lt-d4 li{
    transition: all .3s;
}
.section-2 .lt-d4 li:hover{
    transform: translateY(-10px);
}
.section-2 .lt-d4::after{
    display: none;
}
.section-2 .lt-d4 .d1{
    margin-bottom: 20px;
}
.section-2 .lt-d4 .d1 p {
    display: inline-block;
    color: #333333;
    font-size: 44px;
    font-weight: 700;
    font-family: Microsoft YaHei, "pfsc";
}

.section-2 .lt-d4 .d1 i {
    font-size: 24px;
    position: relative;
    top: -24px;
    left: 10px;
}
 
.section-2 .lt-d4 .d2 {
    font-size: 18px;
    font-family: 'pfsc';
}
.section-2 .s-m{
    margin: 0 auto;
}

.section-3{
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section-3 .t-d{
    margin-bottom: 52px;
    overflow: hidden;
}
.section-3 .t-d .l{
    float: left;
    font-size: 40px;
    color: #000;
    font-family: 'shh';
}
.section-3 .t-d .s-m{
    float: right;
}
.section-3  .img_l{
    float: left;
    width: 68%;
}
.section-3  .img_l .img_box{
    float: left;
    position: relative;
}
.section-3  .img_l .img_box:nth-child(1){
    width: 57.5%;
    margin-bottom: 24px;
}
.section-3  .img_l .img_box:nth-child(1) .l_img{
    padding-bottom: 51%;
}
.section-3  .img_l .img_box:nth-child(2){
    width: 40.5%;
    float: right;
    margin-bottom: 24px;
}
.section-3  .img_l .img_box:nth-child(2) .l_img{
    padding-bottom: 72.5%;
}
.section-3  .img_l .img_box:nth-child(3){
    width: 40.5%;
}
.section-3  .img_l .img_box:nth-child(3) .l_img{
    padding-bottom: 70%;
}
.section-3  .img_l .img_box:nth-child(4){
    width: 57.5%;
    float: right;
}
.section-3  .img_l .img_box:nth-child(4) .l_img{
    padding-bottom: 49.3%;
}
.section-3  .img_r{
    float: right;
    width: 30.6%;
}
.section-3  .img_r .l_img{
    padding-bottom: 132%;
}

.section-3 .img_box:hover .l_img img{
    transform: scale(1.1);
}

.section-4 {
    background: #f4f4f4;
    width: 100%;
}

.section-3  .img_box{
    position: relative;
}
.section-3  .img_box .text{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 40px;
    box-sizing: border-box;
    color: #fff;
}
.section-3  .img_box .text .d1{
    font-family: 'shh';
    font-size: 25px;
    margin-bottom: 15px;
}
.section-3  .img_box .text .d2{
    font-size: 17px;
}
.section-4{
    background: url(../images/s4-bg.png) center no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section-4 .t-d{
    text-align: center;
    margin-bottom: 100px;
    font-size: 40px;
    color: #fff;
    font-family: 'shh';
}
.section-4 ul{
    margin-bottom: 110px;
}
.section-4 ul li{
    width: 20%;
    float: left;
    text-align: center;
    box-sizing: border-box;
    border-right: 1px solid rgba(255, 255, 255, 0.17);
    
}
.section-4 ul li:hover .d1{
    transform: translateY(-20px);
}
.section-4 ul li:hover .d2{
    transform: translateY(-20px);
}
.section-4 ul li:nth-child(5){
    border-right: 0;
}
.section-4 ul li:nth-child(10){
    border-right: 0;
}
.section-4 ul li:nth-child(-n+5){
    padding-top: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
    padding-bottom: 55px;
}
.section-4 ul li:nth-child(n+6){
    padding-top: 35px;
    padding-bottom: 25px;
}
.section-4 ul li .d1{
    width: 115px;
    height: 115px;
    border: 1px dashed #fff;
    border-radius: 115px;
    margin: 0 auto 25px;
    display:flex;
    justify-content:center;
    align-items:center;
    transition: all .3s;
}
.section-4 ul li .d2{
    font-size: 22px;
    color: #fff;
    transition: all .3s;
}
.section-4 .s-m{
    margin: 0 auto;
}

.section-5 .t-d{
    margin-bottom: 30px;
    overflow: hidden;
}
.section-5 .t-d .l{
    float: left;
    font-size: 40px;
    color: #000;
    font-family: 'shh';
}
.section-5 .t-d .s-m{
    float: right;
}
.section-5 .box{
    width: 100%;
    position: relative;
}
.section-5 .box .img-d{
    position: relative;
    width: 1450px;
    margin: 0 auto;
    max-width: 100%;
}
.section-5 .box ul{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 99;
}
.section-5 .box ul li{
    position: absolute;
    right: 0;
    top: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
}
.section-5 .box ul li .d i{
    display: block;
    width: 20px;
    height: 20px;
    background: #06a5f6;
    border-radius: 20px;
}
.section-5 .box ul li .d::after {
    content: "";
    display: block;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    opacity: 1;
    transition: all 0.3s;
    margin-top: -17px;
    margin-left: -17px;
    -webkit-animation: warn 1.3s ease-out both;
    -moz-animation: warn 1.3s ease-out both;
    -o-animation: warn 1.3s ease-out both;
    animation: warn 1.3s ease-out both;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    background: #00a9ff;
}

@-webkit-keyframes warn {
    0% {
      -webkit-transform: scale(0);
      transform: scale(0);
      opacity: 1;
    }
    100% {
      -webkit-transform: scale(1.6);
      transform: scale(1.6);
      opacity: 0;
    }
  }
  
  @-moz-keyframes warn {
    0% {
      -moz-transform: scale(0);
      transform: scale(0);
      opacity: 1;
    }
    100% {
      -moz-transform: scale(1.6);
      transform: scale(1.6);
      opacity: 0;
    }
  }
  
  @-o-keyframes warn {
    0% {
      -o-transform: scale(0);
      transform: scale(0);
      opacity: 1;
    }
    100% {
      -o-transform: scale(1.6);
      transform: scale(1.6);
      opacity: 0;
    }
  }
  
  @keyframes warn {
    0% {
      -webkit-transform: scale(0);
      -moz-transform: scale(0);
      -o-transform: scale(0);
      transform: scale(0);
      opacity: 1;
    }
    100% {
      -webkit-transform: scale(1.6);
      -moz-transform: scale(1.6);
      -o-transform: scale(1.6);
      transform: scale(1.6);
      opacity: 0;
    }
  }
  

.section-5 .box ul li .b{
    /* display: none; */
    background: url(../images/s5-2.png) center no-repeat;
    width: 172px;
    height: 128px;
    text-align: center;
    padding-top: 32px;
    font-size: 19px;
    color: #000;
    box-sizing: border-box;
    position: absolute;
    left: calc(50% - 75px);
    bottom: -16px;
    display: none;
}
.section-5 .box ul li:nth-child(1) {
    top: 46%;
    right: 15%;
}
.section-5 .box ul li:nth-child(2) {
    top: 38%;
    right: 24%;
}
.section-5 .box ul li:nth-child(3) {
    top: 53%;
    right: 17.5%;
}
.section-5 .box ul li:nth-child(4) {
    top: 64%;
    right: 45.5%;
}
.section-5 .box ul li:nth-child(5) {
    top: 40%;
    right: 82.5%;
}
.section-5 .box ul li:nth-child(6) {
    top: 18.5%;
    right: 39.5%;
}
.section-5 .box ul li:nth-child(7) {
    top: 64%;
    right: 45.5%;
}
.section-5 .box ul li:nth-child(8) {
    top: 38%;
    right: 49%;
}
.section-5 .box ul li:nth-child(9) {
    top: 81%;
    right: 70%;
}
.section-5 .box ul li:nth-child(10) {
    top: 40%;
    right: 82.5%;
}


.section-5 .box .text{
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    color: #000000;
}
.section-5 .box .text .t1{
    font-size: 88px;
    margin-bottom: 30px;
    font-family: Microsoft YaHei, "pfsc";
    font-weight: 600;
}
.section-5 .box .text .t2{
    font-size: 19px;
}
.section-6{
    background: url(../images/s6-bg.jpg) center no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section-6 .t-d{
    overflow: hidden;
    color: #000;
    margin-bottom: 105px;
    height: 40px;
    line-height: 40px;
}
.section-6 .t-d .l{
    font-size: 40px;
    float: left;
    font-family: 'shh';
    height: 40px;
    line-height: 40px;
}
.section-6 .t-d .l span{
    font-size: 26px;
    font-family: 'pfsc';
    border-left: 1px solid #c2c3c2;
    margin-left: 28px;
    padding-left: 28px;
    position: relative;
    top: -5px;
}
.section-6 .t-d .r{
    float: right;
}
.section-6 .t-d .r a{
    font-size: 20px;
    font-family: 'pfsc';
}
.section-6 .t-d .r em{
    display: inline-block;
    padding: 0 10px;
    font-size: 18px;
}
.section-6 li{
    float: left;
    width: 23.4%;
    margin-right: 2.1%;
    transition: all .3s;
}
.section-6 li:hover{
    transform: translateY(-10px);
}
.section-6 li .l_img{
    padding-bottom: 74.5%;
}
.section-6 li .text{
    width: 100%;
    background: #fff;
    padding: 25px 18px 30px;
    box-sizing: border-box;
}
.section-6 li .text .d1{
    font-size: 19px;
    color: #000000;
    overflow: hidden;
    text-overflow:ellipsis;
    white-space: nowrap;
    font-family: 'pf-m';
    margin-bottom: 15px;
}
.section-6 li .text .d2{
    font-size: 15px;
    line-height: 22px;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #666;
    margin-bottom: 16px;
}
.section-6 li .text .d3{
    overflow: hidden;
    height: 25px;
    line-height: 25px;
}
.section-6 li .text .d3 .l{
    float: left;
    color: #666;
}
.section-6 li .text .d3 .r{
    float: right;
    padding-right: 34px;
    background: url(../images/arr-r3.png) right center no-repeat;
    transition: all .3s;
}
.section-6 li:hover .text .d3 .r{
    background: url(../images/arr-r4.png) right center no-repeat;
}
.section-6 li:hover .l_img img{
    transform: scale(1.1);
}
.section-6 li:last-child{
    margin-right: 0;
}
.section-6 .s-m{
    margin: 0 auto;
    margin-top: 80px;
}
.section-7 .t-d{
    margin: 50px 0;
    overflow: hidden;
}
.section-7 .t-d .l{
    float: left;
    font-size: 40px;
    color: #000;
    font-family: 'shh';
}
.section-7 .t-d .l span{
    font-size: 25px;
    font-family: 'pf-r';
    border-left: 1px solid #c2c3c2;
    margin-left: 28px;
    padding-left: 28px;
    position: relative;
    top: -5px;
}
.section-7 .t-d .s-m{
    float: right;
}
.section-7 ul{
    border-top: 1px solid #eeeeee;
    border-left: 1px solid #eeeeee;
}
.section-7 li{
    float: left;
    width: 20%;
    height: 115px;
    box-sizing: border-box;
    display:flex;
    justify-content:center;
    align-items:center;
    border-right: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}
.section-7 li img{
    max-width: 90%;
    max-height: 90%;
    transition: all .3s;
}
.section-7 li:hover img{
    transform: scale(1.1);
}
.section7 .fp-tableCell{
    display: block !important;
}
.section7.fp-section.fp-table{
    display: block !important;
}

.section7 .footer{
    position: absolute;
    left: 0;
    bottom: 0;
}
.footer{
    width: 100%;
    background: #202020;
}
.footer .f-d1{
    padding: 42px 0;
    border-bottom: 1px solid #373737;
    overflow: hidden;
}
.footer .f-d1 .l{
    float: left;
}
.footer .f-d1 .r{
    float: right;
    font-size: 16px;
    text-align: right;
}
.footer .f-d1 .r a{
    color: #cccccc;
    float: left;
    line-height: 48px;
    margin-right: 65px;
}
.footer .f-d1 .r  .s-m{
    float: right;
    margin-right: 0;
    cursor: pointer;
}
.footer .f-d2{
    padding: 45px 0 60px;
    width: 100%;
    overflow: hidden;
}
.footer .f-d2 .ma{
    float: left;
    width: 150px;
}
.footer .f-d2 .list {
    float: right;
    width: 1000px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}
.footer .f-d2 .list ul::after{
    display: none;
}
.footer .f-d2 .list .d1{
    margin-bottom: 25px;
}
.footer .f-d2 .list .d2{
    font-size: 16px;
    color: #999999;
    margin-bottom: 15px;
}
.footer .f-d2 .list .d3{
    font-size: 19px;
    font-family: 'pf-m';
    color: #fff;
}
.footer .f-d3{
    height: 80px;
    line-height: 80px;
    border-top: 1px solid #373737;
    overflow: hidden;
    font-size: 14px;
    color: #999;
}
.footer .f-d3 a{
    color: #999;
}
.footer .f-d3 .l{
    float: left;
}
.footer .f-d3 .r{
    float: right;
}

.s-banner {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}
.s-banner .bg {
    width: 100%;
}
.s-banner .text {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
}

.s-banner .text .d1 {
    font-size: 55px;
    margin-bottom: 30px;
    font-family:'shh';
}

.s-banner .text .d2 {
    font-size: 32px;
}
.s-banner  .type {
    width: 1700px;
    position: absolute;
    /* left: calc(50% - 850px); */
    bottom: 0;
    height: 88px;
    line-height: 88px;
    background: rgba(255, 255, 255, 0.7);
    max-width: 95%;
    z-index: 99;
    left: 50%;
    transform: translate(-50%, 0);
}
.s-banner .type a{
    float: left;
    width: 50%;
    text-align: center;
    font-size: 19px;
    color: #000000;
    box-sizing: border-box;

}
.s-banner .type a.this{
    color: #0076c0;
    border-top: 4px solid #0076c0;
}
.s-banner .type a:nth-child(1){
    border-right: 1px solid #ffffff;
} 

.s-t {
    font-size: 42px;
    color: #000;
    margin-bottom: 75px;
}
.s-t .d1 {
    font-size: 35px;
    font-family: 'pf-m';
    margin-bottom: 25px;
}
.s-t .d2 {
    font-size: 22px;
    color: #666;
}
.hr-d1{
    width: 100%;
    background: #f8f8f8;
    padding: 75px 0 135px;
}
.hr-d1 ul{
    display: flex;
}
.hr-d1 li{
    float: left;
    width: 30.7%;
    background: #fff;
    margin-right: 3.95%;
}
.hr-d1 li:nth-child(3){
    margin-right: 0;
}
.hr-d1 li .l_img{
    padding-bottom: 67%;
}
.hr-d1 li .text{
    padding: 40px 45px;
    width: 100%;
    box-sizing: border-box;
}

.hr-d1 li .text .d1{
    font-size: 35px;
    color: #000;
    font-family: 'pf-m';
}
.hr-d1 li .text .d2{
    width: 34px;
    height: 2px;
    background: #bfbfbf;
    margin: 30px 0 25px;
}
.hr-d1 li .text .d3{
    font-size: 19px;
    line-height: 35px;
    color: #666666;
}

.hr-d2{
    padding: 75px 0 105px;
}
.hr-d2 li{ 
    width: 100%;
    overflow: hidden;
    background: #f8f8f8;
    margin-bottom: 32px;
}

.hr-d2 li .t-d .d1{
    height: 90px;
    line-height: 90px;
    overflow: hidden;
    border-bottom: 1px solid #e5e5e5;
    width: 100%;
    padding: 0 45px;
    box-sizing: border-box;
}
.hr-d2 li .t-d .d2{
    height: 80px;
    line-height: 80px;
    overflow: hidden;
    width: 100%;
    padding: 0 45px;
    box-sizing: border-box;
}
.hr-d2 li .t-d .d1 .l{
    font-size: 27px;
    color: #000;
    font-family: 'pf-m';
    float: left;
}
.hr-d2 li .t-d .d1 .l img{
    float: left;
    margin-top: 34px;
    margin-right: 18px;
}
.hr-d2 li .t-d .d1 .r{
    float: right;
    font-size: 16px;
}
.hr-d2 li .t-d .d2 .l {
    font-size: 16px;
    float: left;
}
.hr-d2 li .t-d .d2 .r {
    font-size: 17px;
    color: #999999;
    padding-right: 28px;
    position: relative;
    float: right;
    cursor: pointer;
}
.hr-d2 li .t-d .d2 .r::after{
    content: '';
    display: block;
    width: 16px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background: url(../images/arr-d.png) center no-repeat;
}
.hr-d2 li .b-d{
    width: 100%;
    padding: 20px 45px 100px;
    box-sizing: border-box;
    display: none;
}
.hr-d2 li .b-d .d1{
    font-size: 22px;
    margin-bottom: 16px;
    color: #000;
}
.hr-d2 li .b-d .d2{
    font-size: 15px;
    line-height: 24px;
    color: #999999;
    margin-bottom: 40px;
}

.page {
    width: 100%;
    height: 90px;
    line-height: 90px;
    background: #f8f8f8;
    padding: 0 40px;
    box-sizing: border-box;
}

.page a span{
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 36px;
    font-size: 14px;
    color: #8a95b2;
    margin: 0 10px;
    background: none;
    font-weight: bold;
    border: 1px solid #d6d6d6;

}

.page a span:hover {
    background: #0076c0;
    border: 1px solid #0076c0;
    color: #fff;
}

.page .page-num-current {
    background: #0076c0;
    border: 1px solid #0076c0;
    color: #fff;
}

.page .n {
    width: 100px;
    border: 0;
    float: left;
    margin-top: 26px;
    background: url(../images/arr-l2.png) left center no-repeat;
    background-size: auto 100%;
    padding-left: 50px;
}

.page .n:hover {
    border: 0;
    background: none;
    color: #0076c0;
    background: url(../images/arr-l3.png) left center no-repeat;
    background-size: auto 100%;
}

.page .p {
    width: 100px;
    border: 0;
    float: right;
    margin-top: 26px;
    background: url(../images/arr-r5.png) right center no-repeat;
    background-size: auto 100%;
    padding-right: 50px;
}

.page .p:hover {
    border: 0;
    background: none;
    color: #0076c0;
    background: url(../images/arr-r6.png) right center no-repeat;
    background-size: auto 100%;
}



/*手机端导航样式*/

.rg {
    display: none;
    float: right;
    width: 26px;
    height: 30px;
    line-height: 32px;
    cursor: pointer;
    font-size: 30px;
    color: #fff;
    text-align: center;
    margin-top: 10px;
    margin-left: 20px;
}

/* .header-w .rg {
    color: #333;
} */

.page {
    text-align: center;
    margin-top: 30px;
}

.page a,
.page span {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    color: #8a95b2;
    margin: 0 4px;
    box-sizing: border-box;
    border-radius: 40px;
}
.page a{
    width: auto;
    height: 40px; 
}
.page span {
    background: #8a95b2;
    color: #fff;
}

.a_txt {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 0px;
    height: 0px;
    overflow: hidden;
    z-index: 999999999999;
    background: rgba(0, 0, 0, 0.8);
}

.a_txt .div1 {
    position: absolute;
    width: 100%;
    height: 100%;
    background: none;
    filter: alpha(opacity=0);
    opacity: 0;
    left: 0px;
    top: 0px;
    z-index: 1
}

.a_txt .div2 {
    position: absolute;
    left: 5%;
    top: 5%;
    z-index: 999999;
    width: 6%;
    background: #f2f2f2;
    padding: 4px;
    box-sizing: border-box;
    text-align: center;
    filter: alpha(opacity=0);
    opacity: 0;
    display: none;
}

.a_txt .div2 img {
    width: 100%
}

.a_txt .div2 a {
    font-size: 50px;
    color: #000;
}

.a_txt .div3 {
    position: absolute;
    width: 65%;
    right: 0px;
    top: 0px;
    background: #f2f2f2;
    height: 100%;
    z-index: 100;
    right: -50%;
    padding-top: 3%;
    overflow-y: auto;
}

.a_txt .div3 ul {
    padding-left: 20px;
    width: 86%;
    margin-bottom: 10px;
}

.a_txt .div3 ul li {
    border-bottom: 1px solid #e1e1e1
}

.a_txt .div3 ul li:last-child {
    border-bottom: 0;
}

.a_txt .div3 ul li a {
    display: block;
    height: 50px;
    line-height: 50px;
    font-size: 16px
}

.a_txt .div3 ul li a.n {
    display: inline-block;
    height: 45px;
    line-height: 45px;
    font-size: 15px;
    width: calc(100% - 60px);
    box-sizing: border-box;
    font-weight: bold;

}

/*.a_txt .div3 ul li span {*/
/*    width: 40px;*/
/*    height: 40px;*/
/*    float: right;*/
/*    position: relative;*/
/*}*/

/*.a_txt .div3 ul li span:after {*/
/*    content: '';*/
/*    display: block;*/
/*    width: 10px;*/
/*    height: 2px;*/
/*    background: #666;*/
/*    position: absolute;*/
/*    left: calc(50% - 5px);*/
/*    top: calc(50% - 1px);*/
/*}*/

/*.a_txt .div3 ul li span:before {*/
/*    content: '';*/
/*    display: block;*/
/*    width: 2px;*/
/*    height: 10px;*/
/*    background: #666;*/
/*    position: absolute;*/
/*    left: calc(50% - 1px);*/
/*    top: calc(50% - 5px);*/
/*}*/



.a_txt .div3 ul li .n-box a {
    height: 14px;
    line-height: 14px;
    font-size: 14px;
    color: #999999;
    margin-bottom: 18px;
}



.a_txt .div3 {
    padding-top: 0;
}

.a_txt .div3 .m-d {
    width: 86%;
    height: 46px;
    line-height: 46px;
    margin-left: 20px;
    border-bottom: 1px solid #e1e1e1;
    box-sizing: border-box;
    font-size: 16px;
    font-weight: bold;

}

.a_txt .div3 .m-d span {
    color: #ed0032;
    margin-right: 4px;
    font-size: 20px;
    top: 2px;
    position: relative;
}

.a_txt .div3 .l-d {
    width: 86%;
    margin-left: 20px;
    overflow: hidden;
    margin-bottom: 20px;

}

.a_txt .div3 .l-d .t {
    margin-bottom: 10px;
    height: 46px;
    line-height: 46px;
    border-bottom: 1px solid #e1e1e1;
    box-sizing: border-box;
    font-size: 16px;
    font-weight: bold;
}

.a_txt .div3 .l-d .t span {
    color: #ed0032;
    margin-right: 4px;
    font-size: 20px;
    top: 2px;
    position: relative;
}

.a_txt .div3 .l-d a {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #e1e1e1;
    display: block;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.a_txt .div3 .l-d a img {
    float: left;
}

.a_txt .div3 .l-d a:nth-child(3) {
    padding-bottom: 0px;
    margin-bottom: 0px;
    border-bottom: 0px solid #e1e1e1;
}



.a_txt .div3 .share-d {
    width: 86%;
    margin-left: 20px;
    overflow: hidden;
    margin-bottom: 20px;

}

.a_txt .div3 .share-d .t {
    margin-bottom: 10px;
    height: 46px;
    line-height: 46px;
    border-bottom: 1px solid #e1e1e1;
    box-sizing: border-box;
    font-size: 16px;
    font-weight: bold;
}

.a_txt .div3 .share-d .t span {
    color: #ed0032;
    margin-right: 4px;
    font-size: 20px;
    top: 2px;
    position: relative;
}

.a_txt .div3 .share-d a {
    font-size: 30px;
    margin-right: 8px;
}

.fp-scroller {
    height: 100%;
}

/* 响应式 */


/* 公共 */

@media screen and (min-width: 300px) {
    .container {
        width: 95%;
        position: relative;
        box-sizing: border-box;
        margin: 0 auto;
    }
}

@media screen and (min-width: 1720px) {
    .container {
        width: 1700px;
        position: relative;
        box-sizing: border-box;
        margin: 0 auto;
    }
}
@media screen and (max-width: 1600px) {
    .section-2 .t1 p{
        font-size: 110px;
    }
    .section-2 .lt-d4{
        margin: 0 auto 60px;
    }
}
@media screen and (max-width: 1460px) {
    .s-banner .type {
        height: 70px;
        line-height: 70px;
    }
}

@media screen and (max-width: 1300px) {
    .header .nav li .n {
        font-size: 14px;
    }
}

@media screen and (max-width: 1024px) {
    .header {
        padding: 0.2rem 0;
    }
    .header .logo img {
        max-width: 100%;
        /* height: 0.3rem; */
    }
    .header .nav {
        display: none;
    }

    .header .rg {
        display: block;
    }
    .header .rg img {
        max-width: 100%;
        width: 0.26rem;
    }
    .a_txt .div1{
        left: 10%;
        top: 2%;
    }
    .a_txt .div1 img {
        max-width: 100%;
        width: 0.24rem;
    }
    .s-m img{
        margin-left: 0.1rem;
    }
}

@media screen and (max-width: 768px) {
    .header {
        padding: 0.2rem 0;
    }
    .header .logo img {
        max-width: 100%;
        /* height: 0.3rem; */
    }
    .header .nav {
        display: none;
    }

    .header .rg {
        display: block;
    }
    .header .rg img {
        max-width: 100%;
        width: 0.26rem;
    }
    .a_txt .div1{
        left: 10%;
        top: 2%;
    }
    .a_txt .div1 img {
        max-width: 100%;
        width: 0.24rem;
    }
    .s-m img{
        margin-left: 0.1rem;
    }
    .section-1 .swiper-slide .text .d1{
        font-size: 0.42rem;
        margin: 1.2rem 0 0.2rem;
    }
    .section-1 .swiper-slide .text .d2{
        font-size: 0.24rem;
        margin-bottom: 0.5rem;
    }
    .section-1 .pagination1{
        display: none;
    }
    .section-1 .swiper-button-prev1{
        display: none;
    }
    .section-1 .swiper-button-next1{
        display: none;
    }
    .section-2 .lt-d4{
        margin-bottom: 0.4rem;
    }
    .section-2 .t1 span{
        margin-top: -5rem;
    }
    .section-2 .t1,.section-2 .t2{
        margin-bottom: 0.3rem;
    }
    .section-2 .t2{
        width: 100%;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        display: -webkit-box;
        overflow: hidden;
    }
    .section-1 .s-m,.section-2 .s-m,.section-4 .s-m,.section-5 .box .text .t2{
        margin-bottom: 0.8rem;
    }
    .section-2 .lt-d4{
        justify-content: end;
    }
    .section-2 .lt-d4 li{
        padding-right: 0.6rem;
        padding-bottom: 0.3rem;
    }
    .section-2 .lt-d4 li:nth-child(3){
        padding-right: 0.9rem;
    }
    .section-2 .lt-d4 .d1{
        margin-bottom: 0.05rem;
    }
    .section-2 .lt-d4 .d1 p,.section-3 .t-d .l,.section-5 .t-d .l,.section-6 .t-d .l,.section-7 .t-d .l{
        font-size: 0.28rem;
    }
    .section-2 .lt-d4 .d1 i{
        font-size: 0.14rem;
    }
    .section-2 .lt-d4 .d2{
        font-size: 0.16rem;
    }
    .section-3 .t-d,.section-4 .t-d,.section-5 .t-d,.section-6 .t-d{
        margin: 0.3rem 0;
    }
    .section-3 .t-d .s-m, .section-5 .t-d .s-m,.section-7 .t-d .s-m{
        width: 1.2rem;
        height: 0.36rem;
    }
    .section.section-3 .img_l, .section.section-3 .img_r, .section.section-3 .img_l .img_box{
        width: 100%;
        float: none;
        margin-bottom: 0.1rem;
    }
    .section-3 .img_box .text{
        padding: 0 0.2rem 0.2rem;
    }
    .section-3 .img_l .img_box,.section-5 .box .img-d{
        width: 100%;
    }
    .section-4 ul li{
        width: 50%;
    }
    .section.section-4 ul li{
        padding: 0.3rem 0;
    }
    .section.section-4 ul li:nth-child(2n){
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.17);
    }
    .section-4 ul li:nth-child(5){
        border-right: 1px solid rgba(255, 255, 255, 0.17);
    }
    .section-4 ul li:nth-child(3n),.section-4 ul li:nth-child(7){
        border-bottom: 1px solid rgba(255, 255, 255, 0.17);
    }
    .section-4 ul{
        margin-bottom: 0.6rem;
    }
    .section-5 .box .img-d img{
        max-width: 100%;
    }
    .section-5 .box .text{
        position: static;
    }   
    .section-5 .box .text .t1{
        font-size: 0.6rem;
        margin-bottom: 0.1rem;
        display: none;
    }
    .section-5 .box .text .t2{
        margin: 0.4rem 0;
        text-align: center  
    }
    .section-6 .t-d .l span{
        font-size: 0.14rem;
        margin-left: 0.1rem;
        padding-left: 0.1rem;
    }
    .section-6 .t-d .r{
        display: none;
    }
    .section-6 li{
        float: none;
        width: 100%;
        margin-bottom: 0.3rem;
    }
    .section-6 .s-m{
        margin: 0.4rem auto;
    }
    .section-7 ul{
        margin-bottom: 0.6rem;
    }
    .section-7 li{
        width: 25%;
    }
    .section-7 li:nth-child(9), .section-7 li:nth-child(10){
        display: none;
    }
    .section-7 li .img{
        width: 90%;
    }
    .section-7 .t-d .l span{
        display: none;
    }
    .fp-scroller {
        height: auto;
    }
    .footer .f-d2 .list,.footer .f-d2 .list li{
        width: 100%;
        position: relative;
    }
    .footer .f-d1 .l,.footer .f-d1 .r{
        float: none;
    }
    .footer .f-d1 .r{
        margin-top: 0.3rem;
    }
    .footer .f-d1 .r a{
        margin-right: 0.2rem;
        line-height: 0.32rem;
    }
    .footer .f-d1 .r .s-m,.footer .f-d2 .ma,.footer .f-d3 .r{
        display: none;
    }
    .footer .f-d2 .list .d1,.footer .f-d2 .list .d2,.footer .f-d2 .list .d3{
        float: left;
    }
    .footer .f-d2 .list .d1{
        margin-right: 0.2rem;
    }
    .footer .f-d2 .list .d2{
        margin-top: 0.08rem;
    }
    .footer .f-d2 .list .d3{
        font-size: 0.14rem;
        position: absolute;
        top: 0.4rem;
        left: 0.83rem;
    }
    .footer .text-right {
        width: 100%;
    }
    .section7 .footer{
        position: static;
    }
    .footer .f-d2{
        padding: 0.4rem 0 0.2rem;
    }

    /* hr */
    .s-banner .bg {
        width: 140%;
        position: relative;
        left: -20%;
    }
    .s-banner .text .d1{
        font-size: 20px;
        margin-bottom: 5px;
    }
    .s-banner .text .d2{
        font-size: 13px;
    }
    .s-banner .type {
        height: 45px;
        line-height: 45px;
    }   

    .s-banner .type a {
        font-size: 0.12rem;
    }

    .s-banner .text .d1 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .s-banner .text .d2 {
        font-size: 13px;
    }

    .s-banner .type a.this {
        border-top: 2px solid #0076c0;
        margin-top: -2px;
    }
    .hr-d1{
        padding: 0.4rem 0;
    }
    .s-t {
        margin-bottom: 0.4rem;
    }
    .s-t .d1{
        font-size: 0.28rem;
        margin-bottom: 0.1rem;
    }
    .s-t .d2{
        font-size: 0.16rem;
    }
    .hr-d1 li{
        float: none;
        width: 100%;
        margin-bottom: 0.1rem;
    }
    .hr-d1 li .text{
        padding: 0.2rem;
    }
    .hr-d1 li .text .d1{
        font-size: 0.24rem;
    }
    .hr-d1 li .text .d2{
        margin: 0.2rem 0;
    }
    .hr-d1 li .text .d3{
       font-size: 0.16rem;
       line-height: 0.28rem; 
    }

    .hr-d2{
        padding: 0.4rem 0 0;
    }
    .hr-d2 li .b-d{
        padding: 0 0.2rem 0.4rem;
    }
    .hr-d2 li .t-d .d1,.hr-d2 li .t-d .d2{
        padding: 0 0 0 0.2rem;
        position: relative;
        overflow: initial;
    }
    .hr-d2 li .t-d .d1 .l,.hr-d2 li .b-d .d1{
        font-size: 0.2rem;
    }
    .hr-d2 li .t-d .d1 .l img{
        width: 0.24rem;
    }
    .hr-d2 li .t-d .d1 .r{
        display: none;
    }
    .hr-d2 li .t-d .d2 .r{
        position: absolute;
        right: 0.1rem;
        top: -0.82rem;
        font-size: 0.14rem;
    }
    .page {
        height: 0.72rem;
        line-height: 0.72rem;
        padding: 0 0.1rem;
        margin-bottom: 0.4rem;
    }

    .page a,
    .page span {
        width: 0.36rem;
        height: 0.36rem;
        line-height: 0.36rem;
        font-size: 12px;
        margin: 0 0px;
    }
    .page a,
    .page span{
        width: auto;
    }
    .page a span{
        width: 0.36rem;
        height: 0.36rem;
        line-height: 0.36rem;
        font-size: 12px;
        margin: 0 0px;  
    }
    .page .n {
        width: auto;
        margin-top: 0.18rem;
        padding-left: 0.4rem;
    }

    .page .n:hover {
        background: url(../images/arr-l3.png) left center no-repeat;
        background-size: auto 100%;
    }

    .page .p {
        width: auto;
        margin-top: 0.18rem;
        padding-right: 0.4rem;
    }

    .page .p:hover {
        background: url(../images/arr-r6.png) right center no-repeat;
        background-size: auto 100%;
    }
}


/* 中文 */

@media screen and (max-width: 1460px) {
 
}

@media screen and (max-width: 1300px) {


  
}

@media screen and (max-width: 768px) {
 
 
 
   
}


 